home *** CD-ROM | disk | FTP | other *** search
/ Codemasters Artwork Disc ECTS 2000 ( UK) / Codemasters - Artwork Disc ECTS 2000 (UK).bin / pc / main.dxr / 00082_repeat film loop.ls < prev    next >
Encoding:
Text File  |  2000-01-01  |  1.6 KB  |  45 lines

  1. property spriteNum, myCounter, myLength, myRepetitions, myTotal
  2.  
  3. on beginSprite me
  4.   myCounter = 0
  5.   myTotal = myLength * myRepetitions
  6. end
  7.  
  8. on exitFrame me
  9.   myCounter = myCounter + 1
  10.   if myCounter < myTotal then
  11.     go(the frame)
  12.   end if
  13. end
  14.  
  15. on getPropertyDescriptionList me
  16.   CheckSpriteType(me)
  17.   theProps = [:]
  18.   c = "How many frames long is this filmloop?"
  19.   f = #integer
  20.   addProp(theProps, #myLength, [#comment: c, #format: f, #default: 30])
  21.   c = "How many repetitions before advancing?"
  22.   f = #integer
  23.   addProp(theProps, #myRepetitions, [#comment: c, #format: f, #default: 3])
  24.   return theProps
  25. end
  26.  
  27. on getBehaviorDescription me
  28.   line1 = "   This behavior can be dragged onto a filmloop so that it will repeat a given number of times." & RETURN
  29.   line2 = "   You'll need to tell it how many frames were used to make up the filmloop, as well as how many times you'd like it to repeat."
  30.   line3 = " The movie will hold on the first frame of this filmloop sprite until it plays as many repetitions as you specify. " & RETURN
  31.   line4 = "   (You can shrink the filmloop down to a single frame if you wish to see only that precise number of repetitions,"
  32.   line5 = " or you can tween the rest of the filmloop out if it doesn't matter how much more of the filmloop is seen after the required number of repetitions.)"
  33.   return line1 & line2 & line3 & line4 & line5
  34. end
  35.  
  36. on CheckSpriteType me
  37.   thisSprite = the currentSpriteNum
  38.   if thisSprite <> 0 then
  39.     if (the member of sprite thisSprite).type <> #filmLoop then
  40.       alert("Sorry, this 'Filmloop Counter' behavior can only be used on filmloops.")
  41.       abort()
  42.     end if
  43.   end if
  44. end
  45.